home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / let_it_f.swf / scripts / DefineSprite_794 / frame_1 / DoAction.as
Encoding:
Text File  |  2008-11-12  |  314 b   |  19 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.wait == true)
  4.    {
  5.       if(_root.waterismoving == true)
  6.       {
  7.          this.gotoAndStop(50);
  8.       }
  9.       else
  10.       {
  11.          this.gotoAndStop(1);
  12.       }
  13.    }
  14.    else
  15.    {
  16.       this.gotoAndStop(Math.round(_root.amountpumped / 2) + 1);
  17.    }
  18. };
  19.